home *** CD-ROM | disk | FTP | other *** search
/ EnigmA Amiga Run 1996 February / EnigmA AMIGA RUN 04 (1996)(G.R. Edizioni)(IT)[!][issue 1996-02][Skylink CD III].iso / earcd / comm2 / hydracom.lha / source / smakefile < prev   
Makefile  |  1995-08-15  |  487b  |  21 lines

  1. .c.o:
  2.     sc $(CFLAGS) $(OPTIMIZE) cpu=$(CPU) $(DEBUG) $*.c
  3.  
  4. CFLAGS        = nminc mccons streq strmerge nostkchk define=__PROTO__
  5. LFLAGS        = sc sd noicons
  6.  
  7. OPTIMIZE    = optimize nooptinlocal opttime
  8. CPU        = any
  9. #CPU        = 68040
  10. DEBUG        = debug=line
  11.  
  12. OBJS        = misc.o hydracom.o hydra.o fmisc.o dos_file.o amiga.o
  13. LIBS        = lib:sc.lib lib:amiga.lib lib:debug.lib
  14.  
  15. hydracom:    $(OBJS)
  16.         slink lib:c.o $(OBJS) to $@.debug lib $(LIBS) $(LFLAGS)
  17.         @slink $@.debug to $@ nd noicons
  18.  
  19. clean:
  20.         -delete hydracom \#?.o
  21.